projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89b5a82
)
; Fix last change
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 6 May 2017 20:23:36 +0000
(23:23 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 6 May 2017 20:23:36 +0000
(23:23 +0300)
* test/src/emacs-module-tests.el (module-function-object): Fix thinko
in last change.
test/src/emacs-module-tests.el
patch
|
blob
|
history
diff --git
a/test/src/emacs-module-tests.el
b/test/src/emacs-module-tests.el
index 8cef1cfa7d0659d49a845fd7999e727213fb9fbc..eb7c82b2f60255c6cafc6c04a2d43f4ef0521791 100644
(file)
--- a/
test/src/emacs-module-tests.el
+++ b/
test/src/emacs-module-tests.el
@@
-81,9
+81,9
@@
changes."
(rx (or "#<module function Fmod_test_sum from "
;; MS-Windows doesn't allow us to get the
;; function name, only the address.
- "#<module function at 0x"
- (one-or-more hex-digit)
-
"from "
)
+
(and
"#<module function at 0x"
+
(one-or-more hex-digit)
+
" from ")
)
(* nonl) "mod-test" (* nonl) ">")
(prin1-to-string obj)))))))